home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970929-19971216 / 000024_news@newsmaster….columbia.edu _Wed Oct 1 10:40:23 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA19985
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 1 Oct 1997 10:40:23 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA29499
  7.     for kermit.misc@watsun; Wed, 1 Oct 1997 10:40:22 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Kermit 95 PC character set emulation - how?
  12. Date: 1 Oct 1997 14:40:06 GMT
  13. Organization: Columbia University
  14. Lines: 28
  15. Message-ID: <60tnc6$fng$1@apakabar.cc.columbia.edu>
  16. References: <60tl7a$ak5$1@pheidippides.axion.bt.co.uk>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7789
  19.  
  20. In article <60tl7a$ak5$1@pheidippides.axion.bt.co.uk>,
  21.  <cgreen@bcs.org.uk> wrote:
  22. : I am using Kermit95 (both OS/2 and Windows95) version to 'telnet'
  23. : across my home network to enable me to run command line applications
  24. : on other systems on the network.
  25. : It all works fine except that I can't get the PC graphics characters
  26. : to display correctly.  I.e. the lines, blocks, etc appear as accented
  27. : characters etc.  Presumably this is an emulation/character set problem
  28. : but I can't find the right set up.
  29. If your host application is sending PC code page characters for box
  30. drawing, etc, you probably should be using some form of ANSI terminal
  31. emulation: ANSI, SCOANSI, AT386, QANSI, etc.  In K95, choosing any of
  32. these emulations automatically switches you to CP437.
  33.  
  34. : Can anyone help?  The most important one for me is to be able to run
  35. : an OS/2 session in a Windows95 kermit session.
  36. For Telnetting to the OS/2 Telnet server, the sequence should be
  37. something like this:
  38.  
  39.   set terminal type ansi
  40.   set terminal remote-character-set cp850
  41.  
  42. Or whatever other code page OS/2 is using.
  43.  
  44. - Frank